# This demonstration script shows an example with a horizontal scale.
#
# @(#) hscale.tcl 1.1 95/05/26 15:56:31
set w .hscale
catch {destroy $w}
toplevel $w
wm title $w "Horizontal Scale Demonstration"
wm iconname $w "hscale"
positionWindow $w
label $w.msg -font $font -wraplength 3.5i -justify left -text "An arrow and a horizontal scale are displayed below. If you click or drag mouse button 1 in the scale, you can change the length of the arrow."
pack $w.msg -side top -padx .5c
frame $w.buttons
pack $w.buttons -side bottom -expand y -fill x -pady 2m